home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
etc
/
X11
/
startDM.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
2006-04-12
|
932b
|
38 lines
#!/bin/bash
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2
# Author: Martin Schlemmer <azarah@gentoo.org>
# $Header: /home/cvsroot/gentoo-x86/x11-base/xfree/files/4.3.99.8/startDM.sh,v 1.1 2003/07/11 22:54:09 spyderous Exp $
source /etc/init.d/functions.sh
# We need to source /etc/profile for stuff like $LANG to work
# bug #10190.
source /etc/profile
# Great new Gnome2 feature, AA
# We enable this by default
export GDK_USE_XFT=1
if [ -e ${svcdir}/options/xdm/service ]
then
retval=0
EXE="`cat ${svcdir}/options/xdm/service`"
/sbin/start-stop-daemon --start --quiet --exec ${EXE}
retval=$?
# Fix bug #26125 for slower systems
wait; sleep 2
if [ "${retval}" -ne 0 ]
then
# there was a error running the DM
einfo "ERROR: could not start the Display Manager..."
# make sure we do not have a misbehaving DM
killall -9 ${EXE##*/}
fi
fi
# vim:ts=4